home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-10 | 1.5 KB | 66 lines | [TEXT/MPS ] |
- ;--------------------------------------------------------------------------------
- ;FILENAME
- ; Additions.a
- ;
- ;DESCRIPTION
- ; This file contains the jump table for the Additions printing extension.
- ;
- ;COPYRIGHT
- ; Copyright Apple Computer, Inc. 1991
- ; All rights reserved.
- ;
- ;MODIFICATION HISTORY:
- ; 4/17/91 ALA Initial creation.
- ;
-
- ;================= EXPORTED ROUTINES =================
-
- EXPORT AdditionsIntf
-
- ;================= IMPORTED ROUTINES =================
-
- IMPORT InitializeMessageProc
- IMPORT DespoolPageMessageProc
- IMPORT StartJobMessageProc
- IMPORT FinishJobMessageProc
- IMPORT RenderPageMessageProc
- IMPORT PrintDlgMessageProc
- IMPORT CleanupStartJobMessageProc
-
- ;================= Jump Table =================
-
- AdditionsIntf PROC
-
- dc.l 0 ; Long word required by the Printing Manager
-
- IMPORT InitializeMessageProc
- JMP InitializeMessageProc
-
- IMPORT DespoolPageMessageProc
- JMP DespoolPageMessageProc
-
- IMPORT StartJobMessageProc
- JMP StartJobMessageProc
-
- IMPORT FinishJobMessageProc
- JMP FinishJobMessageProc
-
- IMPORT RenderPageMessageProc
- JMP RenderPageMessageProc
-
- IMPORT PrintDlgMessageProc
- JMP PrintDlgMessageProc
-
- IMPORT CleanupStartJobMessageProc
- JMP CleanupStartJobMessageProc
-
- IMPORT PanelFilterMessageProc
- JMP PanelFilterMessageProc
-
- IMPORT PanelEventMessageProc
- JMP PanelEventMessageProc
-
- ENDPROC
-
- END
-